home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / program / dtswps.zip / DTSFILES.ZIP / EXAMPLE / DINSTALL.CMD next >
OS/2 REXX Batch file  |  1996-06-27  |  378b  |  17 lines

  1. /* */
  2. call RxFuncAdd 'SysLoadFuncs', 'RexxUtil', 'SysLoadFuncs'
  3. call SysLoadFuncs
  4.  
  5. if SysDestroyObject("<AnEx1>") then
  6.    say 'Ex1 Folder removed from desktop.'
  7. else
  8.    say 'Error, Ex1 Folder not removed from desktop.'
  9.  
  10.  
  11. parse arg libdir
  12. if (libdir = "")
  13.   then say '-- specify a directory in the libpath to delete ex1.dll there'
  14. else
  15.   'del' libdir'\ex1.dll'
  16.  
  17.